3
How do I change the control's font

Procedure OnCreate
	Forward Send OnCreate
	Set ComThumbSize to 32
	Variant voStdFont
	Get ComFont to voStdFont
	Handle hoStdFont
	Get Create (RefClass(cComStdFont)) to hoStdFont
	Set pvComObject of hoStdFont to voStdFont
		Set ComName of hoStdFont to "Tahoma"
	Send Destroy to hoStdFont
	Set ComForeColor to (RGB(255,0,0))
	Set ComCaption OLEexThumbPart to "thumb"
End_Procedure
2
How can I change the control's foreground color

Procedure OnCreate
	Forward Send OnCreate
	Set ComForeColor to (RGB(255,0,0))
	Set ComThumbSize to 32
	Set ComCaption OLEexThumbPart to "thumb"
End_Procedure
1
How can I change the control's background color

Procedure OnCreate
	Forward Send OnCreate
	Set ComBackColor to (RGB(0,255,0))
End_Procedure